home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / basic / ace_final.lha / ACE_GPL_Release / include / libraries / ptreplay.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-29  |  777 b   |  29 lines

  1.  
  2. /* ptreplay.h -- definition of ptreplay.library structures */
  3.  
  4. #ifndef    LIBRARIES_PTREPLAY_H 
  5. #define LIBRARIES_PTREPLAY_H
  6.  
  7. #ifndef    EXEC_TYPES_H
  8. #include <exec/types.h>
  9. #endif
  10.  
  11. #define PTREPLAYNAME "ptreplay.library"
  12.  
  13. Struct Module
  14.     STRPTR mod_Name
  15. /* The rest is private for now, but more details may be released later. */
  16. End Struct
  17.  
  18. /* This structure is returned by GetSample function */
  19. Struct PTSample
  20.     STRING _Name SIZE 22    /* Null terminated string with samplename */
  21.     SHORTINT Length        /* Sample length in words */
  22.     BYTE FineTune        /* FineTune of sample in lower 4 bits */
  23.     BYTE Volume        /* Volume of sample */
  24.     SHORTINT _Repeat    /* Repeat start in number of words */
  25.     SHORTINT Replen        /* Repeat length in number of words */
  26. End Struct
  27.  
  28. #endif /* LIBRARIES_PTREPLAY_H */
  29.